This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local Camo = {} | |
local RunService = game:GetService("RunService") | |
local RemoteService = require(game.ReplicatedStorage.RemoteService) | |
Camo.__index = Camo | |
local CamoTypeFuncs = { | |
["Material"] = function(camo) | |
return typeof(camo.Image) == "EnumItem" and camo.Image.EnumType == Enum.Material | |
end; | |
["Texture"] = function(camo) | |
return typeof(camo.Image) == "string" and camo.Image:find("rbxassetid://") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return function() | |
--[[ | |
Basic Monster by ArceusInator | |
Information: | |
Configurations.MaximumDetectionDistance (default 200) | |
The monster will not detect players past this point. If you set it to a negative number then the monster will be able to chase from any distance. | |
Configurations.CanGiveUp (default true) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local PlayersService = game:GetService('Players') | |
local RootCameraCreator = require(script.Parent) | |
local ZERO_VECTOR2 = Vector2.new(0, 0) | |
local XZ_VECTOR = Vector3.new(1,0,1) | |
local Vector2_new = Vector2.new | |
local CFrame_new = CFrame.new | |
local math_atan2 = math.atan2 | |
local math_min = math.min |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local RPGMathProvider = {} | |
local MFLOOR = math.floor | |
local s = {} | |
for key, value in pairs(require(game.Workspace.Settings.PerLevel)) do | |
s[key] = value | |
end | |
for key, value in pairs(require(game.Workspace.Settings.Starting)) do | |
s[key] = value | |
end | |
for key, value in pairs(require(game.Workspace.Settings.AttributeEffect)) do |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--[[ | |
Remember to provide webhook link | |
--]] | |
local discord = require(script.Parent.Parent:WaitForChild("NitroDiscordAPI")) | |
local webhook = discord.Webhook.new("") | |
local feedbackEmbed = discord.RichEmbed.new() | |
:setAuthor("Game Feedback", "https://static-cdn.jtvnw.net/jtv_user_pictures/roblox-profile_image-b364d141205e2f1b-300x300.png") | |
:setTitle("Feedback Information") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local vector={} | |
local cframe={} | |
local network={} | |
local trash={} | |
local utility={} | |
local event={} | |
local sequencer={} | |
local physics={} | |
local particle={} | |
local effects={} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local RemoteService = require(game.ReplicatedStorage.RemoteService) | |
RemoteService.listen("Client","Send","DisplayReward",function(amount,rewardType) | |
script.Parent.NotifyList:FindFirstChild(rewardType).Text = "+"..amount.." "..rewardType:upper() | |
script.Parent.NotifyList:FindFirstChild(rewardType).Visible = true | |
wait(5) | |
script.Parent.NotifyList:FindFirstChild(rewardType).Text = "+0 "..rewardType:upper() | |
script.Parent.NotifyList:FindFirstChild(rewardType).Visible = false | |
end) |
NewerOlder